home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 351-375 / 359 / dice / dice.lzh / lib / assert / assert.c
C/C++ Source or Header  |  1990-03-27  |  263b  |  21 lines

  1.  
  2. /*
  3.  *  ASSERT.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include <assert.h>
  10.  
  11. void
  12. __FailedAssert(file, line)
  13. char *file;
  14. int line;
  15. {
  16.     fprintf(stderr, "Assertion Failed %s line %d\n", file, line);
  17.     abort();
  18. }
  19.  
  20.  
  21.